home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / DelphiDotNet / VclProjectTemplate.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  2.8 KB  |  81 lines

  1. program [!UnitName];
  2.  
  3. uses
  4.   System.Reflection, 
  5.   System.Runtime.CompilerServices,
  6.   SysUtils,
  7.   Forms;
  8.  
  9. {$R *.res}
  10.  
  11. {$REGION 'Program/Assembly Information'}
  12. //
  13. // General Information about an assembly is controlled through the following
  14. // set of attributes. Change these attribute values to modify the information
  15. // associated with an assembly.
  16. //
  17.  
  18. [assembly: AssemblyDescription('')]
  19. [assembly: AssemblyConfiguration('')]
  20. [assembly: AssemblyCompany('')]
  21. [assembly: AssemblyProduct('')]
  22. [assembly: AssemblyCopyright('')]
  23. [assembly: AssemblyTrademark('')]
  24. [assembly: AssemblyCulture('')]
  25.  
  26. // The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
  27. // You can set this in the IDE via the Project Options.
  28. // Manually setting the AssemblyTitle attribute below will override the IDE
  29. // setting.
  30. // [assembly: AssemblyTitle('')]
  31.  
  32.  
  33. //
  34. // Version information for an assembly consists of the following four values:
  35. //
  36. //      Major Version
  37. //      Minor Version 
  38. //      Build Number
  39. //      Revision
  40. //
  41. // You can specify all the values or you can default the Revision and Build Numbers 
  42. // by using the '*' as shown below:
  43.  
  44. [assembly: AssemblyVersion('1.0.*')]
  45.  
  46. //
  47. // In order to sign your assembly you must specify a key to use. Refer to the 
  48. // Microsoft .NET Framework documentation for more information on assembly signing.
  49. //
  50. // Use the attributes below to control which key is used for signing. 
  51. //
  52. // Notes: 
  53. //   (*) If no key is specified, the assembly is not signed.
  54. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  55. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  56. //       a key.
  57. //   (*) If the KeyFile and the KeyName values are both specified, the 
  58. //       following processing occurs:
  59. //       (1) If the KeyName can be found in the CSP, that key is used.
  60. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  61. //           in the KeyFile is installed into the CSP and used.
  62. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  63. //       When specifying the KeyFile, the location of the KeyFile should be
  64. //       relative to the project output directory which is
  65. //       Project Directory\bin\<configuration>. For example, if your KeyFile is
  66. //       located in the project directory, you would specify the AssemblyKeyFile 
  67. //       attribute as [assembly: AssemblyKeyFile('..\\..\\mykey.snk')]
  68. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  69. //       documentation for more information on this.
  70. //
  71. [assembly: AssemblyDelaySign(false)]
  72. [assembly: AssemblyKeyFile('')]
  73. [assembly: AssemblyKeyName('')]
  74. {$ENDREGION}
  75.  
  76. [STAThread]
  77. begin
  78.   Application.Initialize;
  79.   Application.Run;
  80. end.
  81.